@charset "utf-8";


.clearfloat {
	zoom: 1;
}

.clearfloat:before,
.clearfloat:after {
	content: "";
	display: table;
	line-height: 0;
	visibility: hidden;
	clear: both;
	font-size: 0;
}

.clearfloat:after {
	clear: both;
}

.cl {
	zoom: 1;
}

.cl:after {
	content: "";
	display: block;
	clear: both;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}


.cs_yellow {
	background-image: linear-gradient(to right bottom, #FF8818, #F33C2E 50%);
}

.cs_blue {
	background-image: linear-gradient(to right bottom, #01DBFE, #019BE1 50%);
}

.cs_green {
	background-image: linear-gradient(to right bottom, #ff9d75, #ff5632 50%);
}

.eq_xtsz {
	background: linear-gradient(0deg, rgba(255, 203, 27, 1) 0%, #ffb400 100%);
}

.eq_grsz {
	background: linear-gradient(0deg, rgba(56, 215, 213, 1) 0%, rgba(56, 215, 213, 1) 100%);
}

.eq_smcr {
	background: linear-gradient(0deg, rgba(255, 98, 95, 1) 0%, rgba(255, 63, 120, 1) 100%);
}

.eq_crcx {
	background: linear-gradient(0deg, rgba(90, 205, 116, 1) 0%, rgba(80, 210, 155, 1) 100%);
}

.eq_sysm {
	background: linear-gradient(0deg, #7c95ff 0%, #5676fc 100%);
}

.eq_zs {
	background: linear-gradient(0deg, #7a76ff 0%, #8551ff 100%);
}

.cs_green01 {
	background-image: linear-gradient(#63de87, #31ca83 50%);
}

.cs_green02 {
	background-image: linear-gradient(#73e794, #57db8a 50%);
}

.cs_blue01 {
	background: #33abff;
}

.cs_greenbg {
	background-color: #29D8A1;
	color: #fff;
}

.cs_greybg {
	background-color: #F7F7F7;
	color: #B2B2B2;
}

.cs_greenbor {
	border: 0.3vmin solid #29D8A1;
	background: #fff;
	color: #29D8A1;
}

.cs_black {
	background: #00000085;
}

.btn {
	/* display: block; */
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	background: linear-gradient(0deg, #7c95ff 0%, #5676fc 100%);
	padding: 8px 15px;
	border-radius: 50px;
	margin: 0 auto;
	margin-top: 10px;
	transition: all .5s;
	position: absolute;
	z-index: 9999999;
	text-align: center;
	border: 0px;
	bottom: 10px;
	left: calc(57% - 86px);
}

.btn:hover {
	background: linear-gradient(0deg, #ffb800 0%, #ffb800 100%);
}

.wrap {
	width: 80%;
	height: auto;
	margin: 0 auto;
}

/*垂直对齐*/
.m-list-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.m-list-flex .m-cell-bd {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	overflow: hidden;
}

/*文字截取*/
.single-line {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.multi-line {
	min-height: 2em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: clip;
	overflow: hidden;
}

.multi-line1 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: clip;
	overflow: hidden;
}

/*图片*/

/*top*/
#top {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}

.navWrap {
	background: #096afa;
	position: relative;
	top: 0;
}

.navWrap .wrap {
	height: 70px;
	line-height: 70px;
	position: relative;
}

.logo {
	float: left;
	font-size: 0;
	padding-right: 20px;
}

.logo img {
	vertical-align: middle;
}

.nav {
	float: left;
	padding-left: 0px;
}

.nav>ul>li {
	display: inline-block;
	position: relative;
}

.nav>ul>li:first-child>a {
	padding-left: 0;
}

.nav>ul>li>a {
	display: block;
	font-size: 14px;
	color: #e2eeff;
	text-transform: uppercase;
	padding: 0 14px;
	transition: all .3s ease;
	font-weight: normal;
}

.nav>ul>li:hover>a {
	color: #fff;
}

.nav>ul>li:hover>ul {
	opacity: 1;
	visibility: visible;
}

.nav>ul>li>ul {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	background: #fff;
	width: 180px;
	margin: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	box-shadow: 2px 0 11px -3px rgba(0, 0, 0, .2);
	transition: all .5s ease;
}

.nav>ul>li>ul>li {
	display: block;
	line-height: 46px;
	position: relative;
}

.nav>ul>li>ul>li:last-child>a {
	border-bottom: 0;
}

.nav>ul>li>ul>li>a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: #096afa;
	padding: 0 19px;
	border-bottom: 1px solid #E9E9E9;
	transition: all .3s ease;
}

.nav>ul>li>ul>li:hover>a {
	background: #f1f7fe;
	color: #5676fc;
	border-color: 0;
}

.nav>ul>li>ul>li:hover>ul {
	opacity: 1;
	visibility: visible;
}

.nav>ul>li>ul>li>ul {
	position: absolute;
	top: 0;
	left: 100%;
	width: 240px;
	margin: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	background: #fff;
	box-shadow: 2px 0 11px -3px rgba(0, 0, 0, .2);
	transition: all .5s ease;
}

.nav>ul>li>ul>li>ul>li {
	display: block;
	position: relative;
}

.nav>ul>li>ul>li>ul>li:last-child>a {
	border-bottom: 0;
}

.nav>ul>li>ul>li>ul>li>a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: #096afa;
	padding: 14px 19px;
	border-bottom: 1px solid #E9E9E9;
	transition: all .3s ease;
}

.nav>ul>li>ul>li>ul>li:hover>a {
	background: #096afa;
	color: #fff;
	border-color: 0;
}

.nav>ul>li:last-child>ul {
	left: auto;
	right: 0;
}

.navWrapTop {
	width: 100%;
	position: fixed;
	left: 0;
	top: -100px;
	z-index: 999;
}

.menu {
	display: none;
	width: 40px;
	padding: 10px 10px;
	background: #096afa;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1000;
	box-sizing: border-box;
}

.menu span {
	display: block;
	width: 100%;
	height: 3px;
	margin-top: 3px;
	background: #fff;
}

.menu span:first-child {
	margin-top: 0;
}

.menu_right {
	float: right;
	padding: 27px 0px 0px 0px;
}

.menu_right a {
	float: right;
	display: block;
	height: 14px;
	line-height: 14px;
	padding: 0px 10px;
	font-size: 14px;
	color: #fff;
	background: #096afa;
	border-radius: 2px;
	/* margin:  0px 1px; */
	border-right: 1px solid #8ebafb;
}

.menu_right a:hover {
	color: #ff6a00;
}



.navBtn {
	display: none;
	position: absolute;
	width: 30px;
	height: 30px;
	background: url(../images/xq_jt_r.png) no-repeat center;
	background-size: 8px;
	top: 6px;
	right: 8px;
	transition: all .3s ease-in;
	z-index: 1111;
}

.navBtn.on {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}


.banner {
	width: 100%;
	margin-top: 30px;
	/* float: left; */
	/* margin-bottom: 20px; */
}

.banner img {
	display: block;
	width: 100%;
	/* position: absolute; */
	/* right: 73px; */
	/* margin-left: -100px; */
}

.banner li {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.writ {
	position: absolute;
	z-index: 88;
	left: 15%;
	top: 37%;
	transform: translateY(-50%);
	width: 72%;
}

.writ span {
	display: inline-block;
}

.writ h2 {
	position: relative;
	left: -100px;
	opacity: 0;
}

.writ h2 span {
	padding: 20px 10px;
	line-height: 55px;
	font-weight: bold;
	font-size: 42px;
	color: #fff;
}

.writ h3 {
	position: relative;
	right: -100px;
	opacity: 0;
}

.writ h3 span {
	margin: 0px;
	padding: 0px 10px;
	line-height: 55px;
	font-size: 24px;
	color: #fff;
	font-family: 'Raleway', sans-serif, "微软雅黑", 'Microsoft Yahei';
	text-transform: uppercase;
}

.writ h4 {
	margin: 18px 0;
	position: relative;
	top: 40px;
	opacity: 0;
}

.writ h4 span {
	line-height: 42px;
	font-size: 30px;
	color: #0461ed;
}

.writ p {
	line-height: 28px;
	font-size: 16px;
	color: #fff;
	position: relative;
	top: 40px;
	opacity: 0;
}

.bannerLink {
	margin-top: 60px;
}

.bannerLink a {
	float: left;
	height: 42px;
	/* margin-right: 152px; */
	line-height: 42px;
	font-size: 36px;
	color: #c5dcff;
	border-radius: 23px;
	position: relative;
	opacity: 0;
}

.bannerLink a b {
	height: 26px;
	/* margin-right: 64px; */
	line-height: 26px;
	font-size: 14px;
	color: #fff;
	/* border-radius: 23px; */
	/* position: relative; */
	/* opacity: 0; */
	font-weight: normal;
	display: block;
}



.bannerLink a:first-child {
	color: #fff;
	background: none;
}

.bannerLink a:first-child:hover {
	/* color: #0461ed;
	background: #fff;*/
}

.bannerLink a.bannerMore1 {
	/* left: -60px; */
}

.bannerLink a.bannerMore2 {
	position: absolute;
	right: 20%;
	top: 71%;
	bottom: 30px;
}

.bannerLink a.bannerMore2 img {
	bottom: 0;
}

.slider1 .slider_bg01 {
	background: #096afa;
}

.slider1 .slider_bg02 {
	background: #5a8fde;
}

/*通知公告*/



.Supermarket_left {
	float: left;
	width: 68%;
}

.Supermarket {
	display: block;
}

.Supermarket li {
	display: block;
	float: left;
	text-align: center;
	text-align: left;
	width: 25%;
	float: left;
}

.Supermarket_w33 li {
	width: 33.33333%;
}

.Supermarket_w25 li {
	width: 25%;
}

.Supermarket li a {
	display: block;
	background: #fff;
	margin: 3px;
	border-radius: 3px;
	transition: all .5s;
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	padding: 20px 10px;
	padding-right: 0;
	position: relative;
}

.Supermarket li:hover a {
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.4);
}

.Supermarket li a font {
	display: block;
	position: absolute;
	right: 1px;
	top: 0px;
}

.Supermarket li a font b {
	display: inline-block;
	color: #ff6a00;
	font-weight: normal;
	padding-right: 2px;
}

.Supermarket li a font span {
	display: inline-block;
	color: #c3c4c4;
	font-size: 14px;
}

/*.Supermarket li:hover a {
	box-shadow: 0 20px 20px 0 rgba(86, 118, 252, 0.6);
}*/

.Supermarket li a img {
	display: block;
	margin: 0 auto;
	padding-bottom: 0px;
	transition: all .5s;
	width: 20%;
	float: left;
	margin-right: 3%;
	height: 70px;
}

.Supermarket li a h1 {
	display: block;
	font-size: 16px;
	color: #333333;
	line-height: 18px;
	padding-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Supermarket li a p {
	display: block;
	font-size: 14px;
	color: #8a8e99;
	line-height: 14px;
	font-weight: normal;
}

.Supermarket li:hover a img {
	transform: translate(0px, -15px) scale(.828);
	-webkit-transform: translate(0px, -15px) scale(.828);
	-moz-transform: translate(0px, -15px) scale(.828);
	-ms-transform: translate(0px, -15px) scale(.828);
	-o-transform: translate(0px, -15px) scale(.828);
}

.Supermarket li:hover .Supermarket_div {
	transition: all .6s;
	font-weight: 600;
	transform: translateY(-20px);
	-webkit-transform: translateY(-20px);
	-moz-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	-o-transform: translateY(-20px);
}

.Supermarket li:hover .Supermarket_div01 {
	transition: all .6s;
	font-weight: 600;
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
}

.Supermarket_div {
	transition: all .5s;
}

.Supermarket_div01 {
	transition: all .5s;
	/* padding-top: 13px; */
	text-align: left;
}

.Supermarket_button {
	transition: all .5s;
}

.Supermarket_button01 {
	text-align: left;
	/* padding-top: 20px; */
}

.Supermarket li:hover .Supermarket_button {
	transform: translate(0px, -15px) scale(.9);
	-webkit-transform: translate(0px, -15px) scale(.9);
	-moz-transform: translate(0px, -15px) scale(.9);
	-ms-transform: translate(0px, -15px) scale(.9);
	-o-transform: translate(0px, -15px) scale(.9);
}

.Supermarket li:hover .Supermarket_div {
	transition: all .6s;
}

.Supermarket_button strong {}

.Supermarket_button strong b {}

.Supermarket_button button {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	background: #ff6a00;
	padding: 5px 10px;
	margin: 0 auto;
	margin-top: 10px;
	transition: all .5s;
        width: 80px;
}

.Supermarket_button01 button {
	margin: 0;
	margin-top: 10px;
}

.Supermarket_button01button {
	margin: 0;
}

.Supermarket li:hover button {
	background: #ff8630;
	transform: translate(0px, 10px) scale(1.2);
	-webkit-transform: translate(0px, 10px) scale(1.2);
	-moz-transform: translate(0px, 10px) scale(1.2);
	-ms-transform: translate(0px, 10px) scale(1.2);
	-o-transform: translate(0px, 10px) scale(1.2);
}

.Supermarket_div01 li:hover {
	transform: translate(0px, -10px) scale(.9);
	-webkit-transform: translate(0px, -10px) scale(.9);
	-moz-transform: translate(0px, -10px) scale(.9);
	-ms-transform: translate(0px, -10px) scale(.9);
	-o-transform: translate(0px, -10px) scale(.9);
}

transform:translate(10px, 10px) scale(1.1);

}

.Supermarket li:hover .Supermarket_button01 {
	transform: translate(0px, -15px) scale(1);

}

.Supermarket_right {
	float: right;
	width: 31%;
}

.Supermarket_conent {
	float: left;
	width: 75%;
}

.iot {
	display: block;
}

.iot li {
	float: left;
	width: 25%;
	transition: all .6s;
}

.iotpad {
	display: block;
	padding: 10px;
}

.iot_title {
	padding: 30px;
	transition: all .5s;
}

.iot li:hover .iot_title {
	transform: translate(0px, -0px) scale(1.05);
}

.iot_titlebg01 {
	background: url(../images/iot_titlebg01.png) 0 center no-repeat;
	background-size: cover;
}

.iot_titlebg02 {
	background: url(../images/iot_titlebg02.png) 0 center no-repeat;
	background-size: cover;
}

.iot_titlebg03 {
	background: url(../images/iot_titlebg03.png) 0 center no-repeat;
	background-size: cover;
}

.iot_titlebg04 {
	background: url(../images/iot_titlebg04.png) 0 center no-repeat;
	background-size: cover;
}

.iot_title h1 {
	display: block;
	font-size: 24px;
	color: #fff;
	line-height: 24px;
	padding-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
}

.iot_title p {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	font-weight: normal;
}

.iot_content {
	display: block;
	background: #fff;
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	border-radius: 0px 0px 8px 8px;
	transition: all .6s;
}

.iot li:hover .iot_content {
	box-shadow: 0 10px 20px 0 rgba(86, 118, 252, 0.4);
}

.iot_contenttitle {
	padding: 26px 30px;
	transition: all .5s;
}

.iot_content:hover .iot_contenttitle {
	transform: translate(0px, -15px) scale(.9);
	-webkit-transform: translate(0px, -15px) scale(.9);
	-moz-transform: translate(0px, -15px) scale(.9);
	-ms-transform: translate(0px, -15px) scale(.9);
	-o-transform: translate(0px, -15px) scale(.9);
}

.iot_contenttitle .iot_contenttitlebg01 {
	background: url(../images/iot_bgfont01.png) 0 0 no-repeat;
}

.iot_contenttitle .iot_contenttitlebg02 {
	background: url(../images/iot_bgfont02.png) 0 0 no-repeat;
}

.iot_contenttitle .iot_contenttitlebg03 {
	background: url(../images/iot_bgfont03.png) 0 0 no-repeat;
}

.iot_contenttitle .iot_contenttitlebg04 {
	background: url(../images/iot_bgfont04.png) 0 0 no-repeat;
}

.iot_contenttitle font {
	display: block;
	padding: 21px 0 0 0;
}

.iot_contenttitle font h1 {
	display: block;
	font-size: 24px;
	color: #000;
	line-height: 24px;
	padding-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.iot_contenttitle font p {
	display: block;
	font-size: 14px;
	color: #333;
	line-height: 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 40px;
}

.iot_content_all {
	display: block;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
}

.iot_content_all a {
	display: block;
	padding: 80px 20px;
}

.iot_content_all a img {
	display: block;
	margin: 0 auto;
	transition: all .6s;
}

.iot li:hover .iot_content_all a img {
	-o-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	transform: rotateY(360deg);
}


.iot_content_allbg01 {
	background: url(../images/iot_bg01.png) 0 center no-repeat;
	background-size: cover;
}

.iot_content_allbg02 {
	background: url(../images/iot_bg02.png) 0 center no-repeat;
	background-size: cover;
}

.iot_content_allbg03 {
	background: url(../images/iot_bg03.png) 0 center no-repeat;
	background-size: cover;
}

.iot_content_allbg04 {
	background: url(../images/iot_bg04.png) 0 center no-repeat;
	background-size: cover;
}

.programme {
	background: #e5e9f4;
}

.mapbg {
	background: #fff;
}

.map_left {
	float: left;
	width: 36%;
}

.map_right {
	float: right;
	width: 60%;
}


.download {}

.download li {
	width: 49%;
}

.downloadleft {
	float: left;
}

.downloadright {
	float: right;
}

.newsconter_tltle {
	padding: 20px 50px;
}

.newsconter_tltlebg01 {
	background: url(../images/new_img01.png) 0 center no-repeat;
	background-size: cover;
}

.newsconter_tltlebg02 {
	background: url(../images/new_img02.png) 0 center no-repeat;
	background-size: cover;
}

.newsconter_tltle i {
	display: block;
	float: left;
	font-size: 80px;
	color: #fff;
	font-style: normal;
}

.newsconter_tltle font {
	display: block;
	float: left;
	padding-top: 14px;
	padding-left: 20px;
}

.newsconter_tltle font h1 {
	display: block;
	font-size: 32px;
	color: #fff;
	padding-bottom: 10px;
}

.newsconter_tltle font p {
	display: block;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
}

.news_conter {
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	background: #fff;
}

.news_conter .date {
	width: 90px;
	text-align: center;
	float: left;
}

.news_conter .date h1 {
	font-size: 50px;
	line-height: 50px;
	color: #a4a4a4;
	padding-bottom: 5px;
	font-weight: bold;
	font-family: 'Microsoft Yahei';
}

.news_conter .date p {
	font-size: 16px;
	line-height: 16px;
	color: #a4a4a4;
}

.newsconter_list {
	display: block;
	width: -webkit-calc(100% - 90px);
	width: -moz-calc(100% - 90px);
	width: calc(100% - 90px);
	float: right;
}


.newsconter_list h2 {
	display: block;
	font-size: 18px;
	color: #333;
	padding-bottom: 20px;
}

.newsconter_list i {
	display: block;
	width: 40px;
	height: 1px;
	background: #ccc;
	margin-bottom: 10px;
}

.newsconter_list span {
	display: block;
}

.newsconter_list span a {
	display: block;
	color: #666;
	line-height: 26px;
}

.newsconter_list span a:hover {
	display: block;
	color: #096afa;
}

.SaaSmarket_details_list_bg {
	width: 100%;
	background: url(../images/banner02.jpg);
	padding: 44px 0;
}

.SaaSmarket_details_list_font {
	top: 100px;
}

.SaaSmarket_details_list_title {
	text-align: center;
	padding-top: 2%;
}

.SaaSmarket_details_list_title a {
	display: block;
	line-height: 38px;
	/* height:38px; */
	color: #fff;
	font-size: 24px;
	padding-bottom: 30px;
}

.SaaSmarket_details_list_title span {
	display: block;
	padding-top: 5px;
	font-size: 14px;
	line-height: 14px;
	color: #ff710b;
}

.SaaSmarket_details_list_title p {
	display: block;
	padding: 10px;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	/* height:52px; */
	overflow: hidden;
}

.SaaSmarket_details_price {}

.SaaSmarket_details_ico {
	width: calc(100% - 50%);
	text-align: center;
	margin: 0 auto;
}

.SaaSmarket_details_ico li {
	float: left;
	padding-bottom: 5px;
	width: 33.33333%;
	text-align: center;
}

.SaaSmarket_details_ico span {
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	display: block;
	float: left;
	margin-right: 15px;
}

.SaaSmarket_details_ico span b {
	font-size: 14px;
	color: #ff6b01;
	line-height: 24px;
	text-indent: -1px;
	height: 24px;
	display: inline-block;
	font-weight: normal;
}

.SaaSmarket_details_ico1 {
	background: url(../img/shop_ico1.png) 0 center no-repeat;
}

.SaaSmarket_details_ico2 {
	background: url(../img/shop_ico2.png) 0 center no-repeat;
}

.SaaSmarket_details_p {}

.SaaSmarket_details_p span {}

.SaaSmarket_details_p p {
	display: block;
	font-size: 13px;
	color: #666;
	line-height: 22px;
}

.SaaSmarket_details_p b {
	font-size: 18px;
	color: #ff0000;
	font-weight: normal;
}

.SaaSmarket_details_p em {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	line-height: 32px;
	color: #ff4200;
}

.SaaSmarket_details_p i {
	text-align: center;
	font-size: 12px;
	line-height: 23px;
	color: #8A8A8A;
}

.SaaSmarket_details_p font {}

.SaaSmarket_details_p font span {
	margin-right: 15px;
}

.SaaSmarket_details_p font span b {}

.SaaSmarket_details_buy {
	padding: 10px 0px;
	margin: 0 auto;
	text-align: center;
	width: calc(100% - 70%);
}

.SaaSmarket_details_buy span {
	float: left;
	display: block;
	/* height: 50px; */
	margin: 10px 2%;
	width: 45%;
	text-align: center;
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	border-radius: 50px;
	transition: all .5s;
}

.SaaSmarket_details_buy .cserverAPP01 {
	background: linear-gradient(0deg, #7c95ff 0%, #5676fc 100%);
}

.SaaSmarket_details_buy .cserverAPP02 {
	background: linear-gradient(0deg, #ff9957 0%, #ff6b01 100%);
}

.SaaSmarket_details_buy .cserverAPP01:hover {
	background: linear-gradient(0deg, #6e8aff 0%, #395fff 100%);
}

.SaaSmarket_details_buy .cserverAPP02:hover {
	background: linear-gradient(0deg, #ff883c 0%, #ff5001 100%);
}

.SaaSmarket_details_buy span a {
	height: 50px;
	line-height: 50px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	padding: 0px 40px;
}

.SaaSmarket_details_buy .cserverAPP01 a {
	background: url(../images/icon1.png) 0 center no-repeat;
}

.SaaSmarket_details_buy .cserverAPP02 a {
	background: url(../images/icon2.png) 0 center no-repeat;
}

.stars {
	height: 18px;
	line-height: 18px;
	text-align: center;
	margin: 0 auto;
}

.stars em {
	float: left;
	display: block;
	height: 18px;
	line-height: 18px;
	font-size: 14px;
	color: #999;
}

.stars_ico {
	float: left;
	background: url(../images/stars_this.gif) 0 0 repeat-x;
	display: block;
	height: 13px;
	width: 75px;
	margin-right: 5px;
}

.stars_ico span {
	display: block;
	height: 13px;
	background: url(../images/stars.gif) 0 0 repeat-x;
}

.stars b {
	float: left;
	display: block;
	height: 18px;
	line-height: 18px;
	color: #F60;
	font-weight: normal;
	font-size: 16px;
}

.details_ulbg {
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	background: #FFF;
	margin-bottom: 10px;
	width: 100%;
}

.details_ul {
	height: 44px;
	text-align: center;
	width: calc(100% - 50%);
}

.details_ul_h {
	position: fixed;
	background: #FFF;
	top: 70px;
	margin: 0 auto;
	width: 68%;
	z-index: 99;
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	background: #FFF;
	width: 100%;
	padding-left: calc(100% - 70%);
}

.details_ul li {
	float: left;
}

.details_ul li a {
	display: block;
	height: 44px;
	line-height: 44px;
	color: #333;
	font-size: 16px;
	padding: 0px 30px;
}

.details_ul li a:hover {
	color: #4684E8;
}

.SaaS_details_left {
	float: left;
	width: 67%;
}

.SaaS_details_bg {
	box-shadow: 0 5px 10px 0 rgba(86, 118, 252, 0.2);
	background: #FFF;
	margin-bottom: 15px;
	padding: 30px;
	border-radius: 8px;
	transition: all .5s;
	margin: 10px 0px;
}

.SaaS_details_title {
	display: block;
}

.SaaS_details_title h1 {
	display: block;
	font-size: 24px;
	font-weight: normal;
	line-height: 24px;
	color: #000;
	border-left: 3px solid #5777fc;
	text-indent: 8px;
	font-weight: normal;
	margin: 30px 0 15px 0px;
}

.SaaS_details_p {
	display: block;
}

.SaaS_details_p p {
	display: block;
	font-size: 14px;
	font-weight: normal;
	line-height: 26px;
	color: #666;
	text-indent: 8px;
	font-weight: normal;
	padding-bottom: 20px;
}

.SaaS_details_p img {
	width: 100%;
}

.news {
	display: block;
	padding: 10px 0px;
}

.news li {
	display: block;
}

.news li a {
	display: block;
	color: #333;
	line-height: 36px;
	text-indent: 0.7em;
	vertical-align: middle;
	height: auto;
}

.news li:hover {
	color: #159318;
}

.news li a span {
	display: block;
	background: #ffffff;
	width: 6px;
	height: 6px;
	border-radius: 100px;
	vertical-align: middle;
	float: left;
	margin-top: 15px;
	border: 2px solid #5777fc;
}

.news li a span i {
	display: block;
}


.comments li {
	border-bottom: 1px solid #f5f5f5;
	padding: 10px;
	margin-bottom: 20px;
	padding-left: 0px;
}

.comments_div strong {
	display: block;
	padding-right: 80px;
	float: left;
	color: #096afa;
	font-size: 14px;
	height: 18px;
	line-height: 18px;
}

.comments_time {
	display: block;
	float: right;
	color: #999;
	font-size: 12px;
	height: 18px;
	line-height: 18px;
}

.comments p {
	display: block;
	padding-top: 20px;
	font-size: 14px;
	color: #333;
	line-height: 24px;
}

.text {
	display: block;
	border: 1px solid #d5d5d5;
	width: 75%;
	_background-attachment: fixed;
	background-color: #fdfdfd;
	font-size: 14px;
	line-height: 140%;
	padding: 12px 36px 12px 12px;
	height: 174px;
	border-radius: 2px;
	resize: none;
	outline: 0;
	font-family: arial, sans-serif;
}

.publish_span {
	padding: 20px;
}

.publish_span span {
	display: block;
	float: left;
	margin-right: 50px;
	width: 100px;
	line-height: 34px;
	height: 34px;
	background: #5777fc;
	color: #fff;
	text-align: center;
	font-size: 16px;
}

.publish_span span:hover {
	background: #5bd352;
}

.text {
	display: block;
	border: 1px solid #d5d5d5;
	width: 75%;
	_background-attachment: fixed;
	background-color: #fdfdfd;
	font-size: 14px;
	line-height: 140%;
	padding: 12px 36px 12px 12px;
	height: 174px;
	border-radius: 2px;
	resize: none;
	outline: 0;
	font-family: arial, sans-serif;
}




.SaaS_details_right {
	float: right;
	width: 30%
}

.SaaS_details_ewm {
	display: block;
	text-align: center;
}

.SaaS_details_ewm img {
	display: block;
	margin: 0 auto;
}

.SaaS_details_ewm strong {
	display: block;
	font-weight: normal;
	color: #333;
	font-size: 15px;
}

.SaaS_details_ewm span {
	display: block;
	font-weight: normal;
	color: #333;
	font-size: 15px;
	line-height: 28px;
}

.SaaS_details_ewm button {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	background: linear-gradient(0deg, #7c95ff 0%, #5676fc 100%);
	padding: 8px 15px;
	border-radius: 50px;
	margin: 0 auto;
	margin-top: 10px;
	transition: all .5s;
}


.w50 {
	width: 50%
}

.w60 {
	width: 60%
}

.w40 {
	width: 40%
}

.l {
	float: left;
}

.r {
	float: right;
}

.map01 {
	/* padding: 20px; */
}

.one {
	background: #f0f7ff url(../images/1bg.jpg) bottom center no-repeat;
}

.two {
	background: #fff url(../images/2bg.png) bottom center no-repeat;
}

.three {
	background: #fff url(../images/3bg.png) bottom center no-repeat;
}

.four {
	background: #fff url(../images/4bg.png) bottom center no-repeat;
}

.five {
	background: #fff url(../images/5bg.png) bottom center no-repeat;
}

.six {
	background: #fff url(../images/6bg.png) 0 bottom fixed;
	background-size: cover;
}

.maptitle {
	padding-top: 10px
}

.title_all {}

.title_button {
	display: block;
	padding: 20px 0px 0px 0;
}

.title_button div {
	display: block;
	border-radius: 100px;
	border: 1px solid #ff6a00;
	/* padding: 3px 10px; */
}

.title_button a {
	display: block;
	padding: 5px 15px;
	border-radius: 100px 0 0 100px;
}

.title_button .a1 {
	display: block;
	float: left;
	color: #fff;
	background: #ff6a00;
}

.title_button .a1:hover {
	background: #ff5104;
}

.title_button .a2 {
	display: inline-block;
}

.Wplan {
	display: block;
	padding: 30px 0px;
}

.Wplan .Wplanl {
	display: block;
	float: left;
	width: 239px;
	background-size: cover;
	height: 548px;
	transition: .5s;
	transition: all .5s;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
}

.Wplan .Wplanlbg01 {
	background: url(../images/left_bg01.png) 0 center no-repeat;
	background-size: cover;
}

.Wplan .Wplanlbg02 {
	background: url(../images/left_bg02.png) 0 center no-repeat;
	background-size: cover;
}

.Wplan .Wplanl:hover {
	background-size: auto;
}

.Wplanl font {
	/* width: 239px; */
	/* overflow: hidden; */
	padding: 33px;
	display: block;
}

.Wplanl font h1 {
	display: block;
	font-size: 30px;
	color: #FFFFFF;
	line-height: 36px;
	text-align: center;
	padding-top: 20px;
}

.Wplanl font span {
	display: block;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 24px;
	text-align: center;
	padding-bottom: 76px;
}

.Wplanl font p {
	display: block;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 21px;
}

.Wplanl font a {
	display: block;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 32px;
	text-align: center;
	margin-top: 100px;
	height: 36px;
	margin: 144px 0px 20px 0;
}

.Wplanl font .a3 {
	background: #4E78FF;
}

.Wplanl font .a4 {
	background: #ff6a00;
}

.Wplanr {
	display: block;
	float: right;
	width: calc(100% - 249px);
}

.Wplanlist {
	display: block;
}

.Wplanlist li {
	display: block;
	width: 20%;
	float: left;
}

.Wplanlist li a {
	display: block;
	border: 1px solid #e6e6e6;
	box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 10%);
	margin: 5px;
}

.Wplanlist li img {
	display: block;
	width: 100%;
	height: 131px;
	overflow: hidden;
}

.Wplanlist {
	display: block;
	float: left;
	width: 100%;
	height: 548px;
	overflow: hidden;
}

.Wplanlistimg {
	display: block;
	position: relative;
	padding: 10px;
	background: #fff;
}

.Wplanlistimg p {
	display: block;
	height: 21px;
	overflow: hidden;
}

.Wplanlistimg font {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	background: #fff;
}

.Wplanlistimg font b {
	display: inline-block;
	color: #ff6a00;
	font-weight: normal;
	padding-right: 2px;
}

.Wplanlistimg font span {
	display: inline-block;
	color: #c3c4c4;
	font-size: 14px;
}

.company_map {
	/* margin-top: 70px; */
	float: right;
	width: 250px;
}

.company_map li {
	padding: 5px;
	width: 295px;
	width: 278px;
}

.company_map li font {
	display: block;
	background-size: 100%;
	border: 1px solid #ededed;
	padding: 35px 20px;
}

.company_mapbg01 {
	background: url(../images/kuanbg01.png) 0 center no-repeat;
}

.company_mapbg02 {
	background: url(../images/kuanbg02.png) 0 center no-repeat;
}

.company_mapbg03 {
	background: url(../images/kuanbg03.png) 0 center no-repeat;
}

.company_mapbg04 {
	background: url(../images/kuanbg04.png) 0 center no-repeat;
}

.company_map li .company_mapbg01:hover,
.company_map li .company_mapbg02:hover,
.company_map li .company_mapbg03:hover,
.company_map li .company_mapbg04:hover {
	background: #4e78ff;
}

.company_map li .company_mapbg05:hover,
.company_map li .company_mapbg06:hover,
.company_map li .company_mapbg07:hover,
.company_map li .company_mapbg08:hover {
	background: #ff6a00;
}

.company_mapbg05 {
	background: url(../images/kuanbg05.png) 0 center no-repeat;
}

.company_mapbg06 {
	background: url(../images/kuanbg06.png) 0 center no-repeat;
}

.company_mapbg07 {
	background: url(../images/kuanbg07.png) 0 center no-repeat;
}

.company_mapbg08 {
	background: url(../images/kuanbg08.png) 0 center no-repeat;
}


.company_map li h1 {
	display: block;
	font-size: 16px;
	color: #000000;
	line-height: 26px;
	height: 26px;
	font-weight: normal;
}

.company_map li span {
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 30px;
	height: 30px;
	text-align: right;
}

.company_map li span i {
	font-size: 36px;
	padding-right: 5px;
	/* color: #4e78ff; */
	font-style: normal;
}

.company_map li span .i01 {
	color: #4e78ff;
}

.company_map li span .i02 {
	color: #ff6a00;
}

.company_map li:hover font {
	background: #4e78ff;
}

.company_map li:hover .font01 {
	background: #4e78ff;
}

.company_map li:hover .font02 {
	background: #ff6a00;
}

.company_map li:hover h1 {
	color: #fff;
}

.company_map li:hover span {
	color: #fff;
}

.company_map li:hover span i {
	color: #fff;
}



.six_all {
	display: block;
	text-align: center;
	padding: 50px 0;
}

.six_all h1 {
	display: block;
	font-size: 30px;
	color: #FFFFFF;
	line-height: 34px;
}

.six_all p {
	display: block;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 18px;
	padding: 10px 20% 10px 20%;
}

.six_all font {
	display: block;
	width: 270px;
	margin: 0 auto;
}

.six_all font a {
	display: block;
	float: left;
	font-size: 14px;
	line-height: 18px;
	padding: 10px 27px;
	display: block;
	color: #FFFFFF;
	border: 1px solid #fff;
	margin-right: 10px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: color 0.5s all;
	-o-transition: 0.5s all;
}

.six_all font a:hover {
	background: #FF6A00;
	border: 1px solid #FF6A00;
}

.title {
	padding: 20px 0px;
}

.title img {}

.title h1 {
	display: block;
	font-size: 24px;
	color: #000;
	line-height: 40px;
}

.title h1 i {
	height: 3px;
	background: #FF6A00;
	width: 50px;
	display: inline-block;
	/* margin-bottom: 7px; */
	margin: 0px 5px 7px 5px;
}

.title p {
	display: block;
	font-size: 14px;
	color: #999999;
	line-height: 14px;
}

.title01 {
	padding: 10px 0px;
	text-align: center;
}

.title01 h1 {
	padding: 20px 0px 5px 0;
	font-size: 24px;
	line-height: 21px;
	color: #000;
}

.title01 p {
	display: block;
	font-size: 14px;
	color: #999999;
	line-height: 14px;
}

.title02 {
	padding: 10px 0px 30px;
	text-align: center;
}

.title02 h1 {
	padding: 20px 0px 5px 0;
	font-size: 24px;
	line-height: 21px;
	color: #fff;
}

.title02 p {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
}


.mpany_map {
	margin-top: 70px;
	float: right;
}

.company_map03 {
	/* margin-top: 70px; */
	float: right;
	width: 250px;
}

.company_map03 li {
	padding: 5px;
	width: 295px;
	width: 278px;
}

.company_map03 li font {
	display: block;
	/* background: url(../images/dian.png) 0 center repeat; */
	background-size: cover;
	/* border: 1px solid #0662d4; */
	padding: 20px 20px;
}

.company_map03 li .fontbg01 {
	background: url(../images/iotbg02_01.png) 0 center repeat;
	background-size: cover;
}

.company_map03 li .fontbg02 {
	background: url(../images/iotbg02_02.png) 0 center repeat;
	background-size: cover;
}

.company_map03 li .fontbg03 {
	background: url(../images/iotbg02_03.png) 0 center repeat;
	background-size: cover;
}

.company_map03 li .fontbg04 {
	background: url(../images/iotbg02_04.png) 0 center repeat;
	background-size: cover;
}

.company_map03 li .fontbg05 {
	background: url(../images/iotbg02_05.png) 0 center repeat;
	background-size: cover;
}

.company_map03 li h1 {
	display: block;
	font-size: 16px;
	color: #ffffff;
	line-height: 26px;
	height: 26px;
	font-weight: normal;
}

.company_map03 li span {
	display: block;
	font-size: 14px;
	color: #e6dddd;
	line-height: 30px;
	height: 30px;
	text-align: right;
}

.company_map03 li span i {
	font-size: 40px;
	padding-right: 5px;
	color: #ffffff;
	font-style: normal;
}

.company_map03 li h2 {
	padding: 5px;
	font-size: 24px;
	color: #fff;
	text-align: center;
}



.map05 {
	width: calc(100% - 500px);
	float: left;
}



.six_all font button {
	display: block;
	position: relative;
	top: 0;
	border: 0;
	cursor: pointer;
	background: #9ccc65;
	color: white;
	border-radius: 3px;
	line-height: 1;
	font-size: 20px;
	padding: 15px 25px;
	outline: 0;
	margin: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.six_all font button.shiny {
	background: #007eaf;
	background: linear-gradient(-45deg, #2284fb 50%, #0a0e92 60%, #2e59d4 70%);
	background-size: 600% 100%;
	-webkit-animation: shine 20s infinite;
	animation: shine 20s infinite;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.six_all font button.shinydarken {
	background: #9ccc65;
	background: linear-gradient(-45deg, #9ccc65 50%, #699833 60%, #9ccc65 70%);
	background-size: 600% 100%;
	-webkit-animation: shine 20s infinite;
	animation: shine 20s infinite;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.six_all font button:active {
	top: 2px;
}

@-webkit-keyframes shine {
	0% {
		background-position-x: 400%;
	}

	50% {
		background-position-x: 0%;
	}

	100% {
		background-position-x: -400%;

	}
}

@keyframes shine {
	0% {
		background-position-x: 400%;
	}

	50% {
		background-position-x: 0%;
	}

	100% {
		background-position-x: -400%;
	}
}







/*footer*/

.footer {
	background: #173f7d url(../images/foot_bg.png) no-repeat center bottom fixed;
	position: relative;
	opacity: 0;
	background-size: cover;
}

.SaaSmarket_foot {
	background: #16162c;
	background-size: cover;
	width: 100%;
	min-width: 1260px
}

.SaaSmarket_foot_center {
	width: 677px;
	margin: 0 auto;
	text-align: center;
}

.SaaSmarket_foot_phone p {
	display: block;
	font-size: 13px;
	color: #9a9a9a;
	line-height: 32px;
}

.SaaSmarket_foot_center li {
	margin: 0 auto;
	width: 283px;
	padding: 36px 10px;
	float: left;
	text-align: initial;
}

.SaaSmarket_foot_center li strong {
	display: block;
	font-size: 34px;
	color: #fff;
	overflow: hidden;
	float: left;
	line-height: 46px;
	font-weight: normal;
}

.SaaSmarket_foot_center li img {
	margin: 0 auto;
	width: 110px;
	height: 110px;
}

.SaaSmarket_foot_center li span {
	display: block;
	font-size: 14px;
	color: #fff;
	overflow: hidden;
	text-align: center;
}

.SaaSmarket_foot_address {
	border-top: 1px solid #272639;
	padding: 30px;
	text-align: center;
	background: #0e0d23;
}

.SaaSmarket_foot_address p {
	font-size: 14px;
	line-height: 31px;
	color: #9a9a9a;
}


.footerBottom {
	padding: 22px 0;
	text-align: center;
	background: #173f7d;
	border-top: 1px solid #264c86;
	color: #9fc4fd;
	font-weight: normal;
}

.footerBottom p {
	line-height: 20px;
}

.footerBottom a {
	color: #ff6600;
}





@media (max-width: 1680px) {}

@media (max-width: 1440px) {
	.wrap {
		width: 90%;
		margin: 0 auto;
	}
.Supermarket li a img {
        height: 100%;
}

}


@media (max-width: 1300px) {


.Supermarket li a img {
        height: 100%;
}
	/*news*/
	.nav {
		display: none;
	}

	.wrap {
		width: 96%;
		margin: 0 auto;
	}

	.writ {
		left: 5%;
		width: 92%;
	}

	.Supermarket li {
		width: 50%;
                height: 154px;
	}

	.maptitle,
	.title01,
	.map01,
	.map02,
	.map03,
	.map05 {
		display: none;
	}

	.Wplan .Wplanlbg01,
	.Wplan .Wplanlbg02 {
		width: 100%;
		height: auto;
		float: none;
	}

	.Wplanl font {
		padding: 15px;
	}

	.Wplanl font h1 {
		display: block;
		padding-top: 5px;
		font-size: 24px;
	}

	.Wplanl font span {
		text-align: center;
		padding-bottom: 00px;
	}

	.Wplanl font p {
		display: block;
		font-size: 14px;
		color: #FFFFFF;
		line-height: 21px;
		text-align: center;
	}

	.Wplanl font a {
		margin: 20px auto;
		width: 185px;
	}

	.Wplan .Wplanl:hover {
		background-size: cover;
	}

	.Wplanlist {
		padding: 15px 0
	}

	.Wplanr,
	.Wplanlist,
	.company_map {
		width: 100%;
		float: none;
		height: auto;
	}

	.Wplanlist li {
		width: 50%;
	}

	.company_map li {
		width: 50%;
		float: left;
		padding: 0;
	}

	.Supermarket {
		padding-bottom: 20px;
	}

	.company_map03 {
		width: 100%;
		float: none;
		padding: 20px 0;
	}

	.company_map03 li {
		padding: 0;
		width: 50%;
		float: left;
	}

	.company_map03 .company_map03li {
		width: 100%;
		/* float: left; */
	}

	.company_map03 li font {
		padding: 20px 20px;
	}

	.six_all {
		padding: 30px 0;
	}

	.six_all h1 {
		font-size: 24px;
	}

	.company_map03 li h2 {
		font-size: 18px;
		padding: 0;
	}

	.company_map li font {
		padding: 25px 20px;
	}

	.title h1 {
		font-size: 24px;
	}

	.banner img {
		min-height: 200px;
	}
}

@media (max-width: 1024px) {

	.writ {
		top: 17%;
		width: 100%;
	}
.Supermarket li a img {
        height: 100%;
}

	.banner img {
		min-height: 200px;
	}






}

@media (max-width: 992px) {
	.bannerLink a {
		font-size: 28px;
	}
.Supermarket li a img {
        height: 100%;
}

	.title h1 {
		font-size: 20px;
		line-height: 27px;
	}

	.title {
		padding: 10px 0px;
	}

	.banner img {
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.wrap {
		width: 98%;
		margin: 0 auto;
	}
.Supermarket li a img {
        height: 100%;
}
	.banner {
		margin-top: 30px;
	}
.bannerLink a:first-child{ width:260px;left: -14%;}
	.bannerLink a.bannerMore2 img {
		/* width: 50%; */
		display: none;
	}

	.writ {
		width: 100%;
		left: 28%;
		/* position: absolute; */
	}

	.writ h2 span {
		font-size: 26px;
		line-height: 30px;
		padding: 10px 10px 0px 10px;
	}

	.writ h3 span {
		font-size: 14px;
		line-height: 20px;
	}

	.writ h4 {
		margin: 2px 0;
	}

	.writ h4 span {
		font-size: 14px;
		line-height: 16px;
	}

	.writ p {
		font-size: 12px;
		line-height: 16px;
		min-height: 2em;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		text-overflow: clip;
		overflow: hidden;
	}

	/*news*/
	.title h1 {
		font-size: 16px;
		line-height: 32px;
	}

	.Wplanl font h1 {
		font-size: 26px;
	}

	.company_map li font {
		padding: 18px 20px;
	}

	.Wplan {
		display: block;
		padding: 15px 0px;
	}

	.company_map03 li span i {
		font-size: 32px;
	}

	.bannerLink {
		margin-top: 57px;
		width: 100%;
	}

	.bannerLink a {
		font-size: 28px;
		text-align: center;
	}

	.banner img {
		width: 100%;
		min-height: 150px;
	}

	.title p {
		font-size: 12px;
	}

	#map04 {
		display: none;
	}

	#map04_phone {
		display: block;
	}
}

@media (min-width:768px) {
	#map04 {
		display: block;
	}

	#map04_phone {
		display: none;
	}
}


@media (max-width:500px) {
	.title_button {
		padding: 10px 0px;
	}
	.Wplanlist li:last-child {
		display: none;
	}
	.writ {
		width: 60%;
		left: 25%;
	}
}
